Added gui access to smart names
authorjfatherton <jfatherton@f51c46e8-681c-474f-0cfe-069cfd0219fb>
Sat, 14 Aug 2004 16:07:44 +0000 (16:07 +0000)
committerjfatherton <jfatherton@f51c46e8-681c-474f-0cfe-069cfd0219fb>
Sat, 14 Aug 2004 16:07:44 +0000 (16:07 +0000)
gpsbabel/macgpsbabel/English.lproj/MainMenu.nib/info.nib
gpsbabel/macgpsbabel/English.lproj/MainMenu.nib/objects.nib
gpsbabel/macgpsbabel/MacGPSBabel.applescript
gpsbabel/macgpsbabel/MacGPSBabel.pbproj/jeremya.pbxuser
gpsbabel/macgpsbabel/MacGPSBabel.pbproj/project.pbxproj

index e96c951ae3b597a0560217e312b980ae4b29f38f..035a88d62d13edbd5670895e05fba1e1b9d7b6df 100644 (file)
@@ -8,14 +8,14 @@
                <string>69 252 302 44 0 0 1152 746 </string>
        </dict>
        <key>IBFramework Version</key>
-       <string>283.0</string>
+       <string>291.0</string>
        <key>IBOpenObjects</key>
        <array>
-               <integer>305</integer>
+               <integer>229</integer>
+               <integer>21</integer>
                <integer>29</integer>
+               <integer>305</integer>
                <integer>678</integer>
-               <integer>21</integer>
-               <integer>229</integer>
        </array>
        <key>IBSystem Version</key>
        <string>6R73</string>
index 8f8edf1d1c62a02e778c5ce8c8530054e5edb482..bd6af5e3968fa3bb95323f05f21020144a36668e 100644 (file)
Binary files a/gpsbabel/macgpsbabel/English.lproj/MainMenu.nib/objects.nib and b/gpsbabel/macgpsbabel/English.lproj/MainMenu.nib/objects.nib differ
index 72c2926cb16e30959d39346a6477c9390e4bddf2..c7d352a2cef7904947bdbf7fcc622e32bb13b64e 100644 (file)
@@ -209,6 +209,18 @@ on clicked theObject
                end if
        end if
        
+       -- Filter Window - Smart names check box
+       if theObject is the button "smartSwitch" of window "filterWindow" then
+               if state of button "smartSwitch" of window "filterWindow" is equal to 1 then
+                       set enabled of text field "smartLen" of window "filterWindow" to true
+                       set editable of text field "smartLen" of window "filterWindow" to true
+                       set contents of text field "smartLen" of window "filterWindow" to ""
+               else
+                       set enabled of text field "smartLen" of window "filterWindow" to false
+                       set editable of text field "smartLen" of window "filterWindow" to false
+               end if
+       end if
+       
        --debug mode
        if theObject is the button "debugButton" of window "MacGPSBabel" then
                if (visible of window "debugWindow") is false then
@@ -300,6 +312,18 @@ on convertFile(fileList)
        -- create strings for output file
        set currentOutIndex to contents of popup button "outPop" of window "MacGPSBabel"
        set outType to item (currentOutIndex) of typeList
+       if visible of window "filterWindow" is true then
+               if state of button "smartSwitch" of window "filterWindow" is equal to 1 then
+                       set smartSwitch to " -s"
+                       if contents of text field "smartLen" of window "filterWindow" is not equal to "" then
+                               set outType to outType & ",snlen=" & ((contents of text field "smartLen" of window "filterWindow") as integer) & " "
+                       end if
+               else
+                       set smartSwitch to ""
+               end if
+       else
+               set smartSwitch to ""
+       end if
        set OutExt to item (currentOutIndex) of extList
        -- set outPath to directory of aFile
        tell save panel
@@ -327,7 +351,7 @@ on convertFile(fileList)
        feedbackBusy(true)
        -- do the script
        set thePath to POSIX path of (path to me) as string
-       set theConvertScript to (quoted form of thePath & "Contents/Resources/gpsbabel" & fileText & " " & filterText & "-o " & outType & " -F " & quoted form of outputFile) as string
+       set theConvertScript to (quoted form of thePath & "Contents/Resources/gpsbabel" & smartSwitch & fileText & " " & filterText & "-o " & outType & " -F " & quoted form of outputFile) as string
        try
                set scriptOut to do shell script theConvertScript as string
                set convertYN to "Conversion Completed Successfully"
@@ -378,6 +402,18 @@ on uploadFile(fileList)
        else
                set gpsText to " magellan "
        end if
+       if visible of window "filterWindow" is true then
+               if state of button "smartSwitch" of window "filterWindow" is equal to 1 then
+                       set smartSwitch to " -s"
+                       if contents of text field "smartLen" of window "filterWindow" is not equal to "" then
+                               set gpsText to gpsText & ",snlen=" & ((contents of text field "smartLen" of window "filterWindow") as integer) & " "
+                       end if
+               else
+                       set smartSwitch to ""
+               end if
+       else
+               set smartSwitch to ""
+       end if
        
        -- run the script
        set thePath to POSIX path of (path to me) as string
@@ -385,7 +421,7 @@ on uploadFile(fileList)
        set visible of window "MacGPSBabel" to true
        feedbackBusy(true)
        set serialText to "-F /dev/cu." & (the title of popup button "serialPop" of window "selectGPS")
-       do shell script (quoted form of thePath & "Contents/Resources/gpsbabel" & fileText & " " & filterText & "-o " & gpsText & serialText)
+       do shell script (quoted form of thePath & "Contents/Resources/gpsbabel" & smartSwitch & fileText & " " & filterText & "-o " & gpsText & serialText)
        feedbackBusy(false)
        display dialog "Upload Complete" buttons {"OK"} default button 1
 end uploadFile
@@ -413,6 +449,18 @@ on downloadFile()
        
        set currentOutIndex to contents of popup button "outPop" of window "MacGPSBabel"
        set outType to item (currentOutIndex) of typeList
+       if visible of window "filterWindow" is true then
+               if state of button "smartSwitch" of window "filterWindow" is equal to 1 then
+                       set smartSwitch to " -s"
+                       if contents of text field "smartLen" of window "filterWindow" is not equal to "" then
+                               set outType to outType & ",snlen=" & ((contents of text field "smartLen" of window "filterWindow") as integer) & " "
+                       end if
+               else
+                       set smartSwitch to ""
+               end if
+       else
+               set smartSwitch to ""
+       end if
        set OutExt to item (currentOutIndex) of extList
        set TempFileName to outName & OutExt
        set theResult to display save panel in directory "~/Desktop" with file name TempFileName
@@ -427,7 +475,7 @@ on downloadFile()
                set visible of window "SelectGPS" to false
                set visible of window "MacGPSBabel" to true
                feedbackBusy(true)
-               do shell script (quoted form of thePath & "Contents/Resources/gpsbabel" & trackText & " -i" & gpsText & "-f " & serialText & " " & filterText & " -o " & outType & " -F " & quoted form of outputFile)
+               do shell script (quoted form of thePath & "Contents/Resources/gpsbabel" & smartSwitch & trackText & " -i" & gpsText & "-f " & serialText & " " & filterText & " -o " & outType & " -F " & quoted form of outputFile)
                feedbackBusy(false)
                display dialog "Download from GPS is complete" buttons {"OK"} default button 1
        else
index 1f4dc2c945fc8d95d9e3df24e846b046a34d2734..3fbd8573f88645b0810ade5d4d3fae402f0b7577 100644 (file)
@@ -13,7 +13,7 @@
                        DA206CF0015C4D9F03C91932,
                );
                perUserDictionary = {
-                       PBXPerProjectTemplateStateSaveDate = 112497554;
+                       PBXPerProjectTemplateStateSaveDate = 114188516;
                        "PBXTemplateGeometry-F5314676015831810DCA290F" = {
                                ContentSize = "{685, 434}";
                                LeftSlideOut = {
                                                Collapsed = YES;
                                                Frame = "{{0, 0}, {594, 280}}";
                                                Split0 = {
-                                                       Frame = "{{1e+06, 1e+06}, {594, 27}}";
+                                                       Frame = "{{1e+06, 1e+06}, {594, 0}}";
                                                };
                                                SplitCount = 1;
                                                Tab0 = {
                                                Split0 = {
                                                        Split0 = {
                                                                NavContent0 = {
-                                                                       bookmark = 3F2FDB0906B4943500A80064;
+                                                                       bookmark = 3F6587EF06CE7003007C6F9A;
                                                                        history = (
                                                                                F5E2D67E05CDA550017C67C1,
                                                                                F5E2D67F05CDA550017C67C1,
                                                                                F5E2D68005CDA550017C67C1,
                                                                                F5EAB15305FF78D401A80065,
-                                                                               3F7037A506B335A800A80064,
                                                                                3F7037A606B335A800A80064,
                                                                                3F7037A706B335A800A80064,
-                                                                               3F2FDB0606B4943500A80064,
-                                                                               3F2FDB0706B4943500A80064,
+                                                                               3F10FD0506CC4D6D00A80064,
+                                                                               3F10FD0606CC4D6D00A80064,
+                                                                               3F6587EE06CE7003007C6F9A,
                                                                        );
                                                                        prevStack = (
                                                                                F5F16EF80527D1B401A80064,
                                                                                3F7037AA06B335A800A80064,
                                                                                3F7037AB06B335A800A80064,
                                                                                3F2FDB0806B4943500A80064,
+                                                                               3F5F093C06B4953400A80064,
+                                                                               3F10FD0806CC4D6D00A80064,
+                                                                               3F10FD0906CC4D6D00A80064,
+                                                                               3F10FD0A06CC4D6D00A80064,
+                                                                               3F10FD0B06CC4D6D00A80064,
+                                                                               3F10FD0C06CC4D6D00A80064,
                                                                        );
                                                                };
                                                                NavCount = 1;
                                                TabCount = 5;
                                        };
                                },
+                               {
+                                       LeftSlideOut = {
+                                               Split0 = {
+                                                       Split0 = {
+                                                               NavCount = 1;
+                                                               NavGeometry0 = {
+                                                                       Frame = "{{0, 0}, {685, 150}}";
+                                                                       NavBarVisible = YES;
+                                                               };
+                                                               NavSplitVertical = NO;
+                                                       };
+                                                       SplitCount = 1;
+                                                       Tab1 = {
+                                                               Debugger = {
+                                                                       Split0 = {
+                                                                               SplitCount = 2;
+                                                                       };
+                                                                       SplitCount = 1;
+                                                                       TabCount = 2;
+                                                               };
+                                                               LauncherConfigVersion = 7;
+                                                       };
+                                                       Tab2 = {
+                                                               LauncherConfigVersion = 3;
+                                                               Runner = {
+                                                               };
+                                                       };
+                                                       TabCount = 5;
+                                               };
+                                               SplitCount = 1;
+                                               Tab1 = {
+                                                       OptionsSetName = "Hierarchy, all classes";
+                                               };
+                                               TabCount = 5;
+                                       };
+                               },
+                               {
+                                       LeftSlideOut = {
+                                               Split0 = {
+                                                       Split0 = {
+                                                               NavCount = 1;
+                                                               NavGeometry0 = {
+                                                                       Frame = "{{0, 0}, {594, 150}}";
+                                                                       NavBarVisible = YES;
+                                                               };
+                                                               NavSplitVertical = NO;
+                                                       };
+                                                       SplitCount = 1;
+                                                       Tab1 = {
+                                                               Debugger = {
+                                                                       Split0 = {
+                                                                               SplitCount = 2;
+                                                                       };
+                                                                       SplitCount = 1;
+                                                                       TabCount = 2;
+                                                               };
+                                                               LauncherConfigVersion = 7;
+                                                       };
+                                                       Tab2 = {
+                                                               LauncherConfigVersion = 3;
+                                                               Runner = {
+                                                               };
+                                                       };
+                                                       TabCount = 5;
+                                               };
+                                               SplitCount = 1;
+                                               Tab1 = {
+                                                       OptionsSetName = "Hierarchy, all classes";
+                                               };
+                                               TabCount = 5;
+                                       };
+                               },
                        );
                        PBXWorkspaceGeometries = (
                                {
                                        ToolbarVisible = YES;
                                        WindowLocation = "{3, 0}";
                                },
+                               {
+                                       ContentSize = "{685, 434}";
+                                       LeftSlideOut = {
+                                               Collapsed = NO;
+                                               Frame = "{{0, 23}, {685, 411}}";
+                                               Split0 = {
+                                                       ActiveTab = 2;
+                                                       ActiveTabName = PBXBuildResultsModule;
+                                                       Collapsed = NO;
+                                                       Frame = "{{0, 0}, {685, 411}}";
+                                                       Split0 = {
+                                                               Frame = "{{0, 301}, {685, 110}}";
+                                                       };
+                                                       SplitCount = 1;
+                                                       Tab0 = {
+                                                               Frame = "{{0, 0}, {952, 321}}";
+                                                       };
+                                                       Tab1 = {
+                                                               Debugger = {
+                                                                       Collapsed = NO;
+                                                                       Frame = "{{0, 0}, {781, 452}}";
+                                                                       Split0 = {
+                                                                               Frame = "{{0, 24}, {781, 428}}";
+                                                                               Split0 = {
+                                                                                       Frame = "{{0, 0}, {383, 428}}";
+                                                                               };
+                                                                               Split1 = {
+                                                                                       DebugVariablesTableConfiguration = (
+                                                                                               Name,
+                                                                                               123,
+                                                                                               Value,
+                                                                                               85,
+                                                                                               Summary,
+                                                                                               155.123,
+                                                                                       );
+                                                                                       Frame = "{{392, 0}, {389, 428}}";
+                                                                               };
+                                                                               SplitCount = 2;
+                                                                       };
+                                                                       SplitCount = 1;
+                                                                       Tab0 = {
+                                                                               Frame = "{{0, 0}, {100, 50}}";
+                                                                       };
+                                                                       Tab1 = {
+                                                                               Frame = "{{0, 0}, {100, 50}}";
+                                                                       };
+                                                                       TabCount = 2;
+                                                                       TabsVisible = YES;
+                                                               };
+                                                               Frame = "{{0, 0}, {781, 452}}";
+                                                               LauncherConfigVersion = 7;
+                                                       };
+                                                       Tab2 = {
+                                                               Frame = "{{0, 0}, {685, 215}}";
+                                                               LauncherConfigVersion = 3;
+                                                               Runner = {
+                                                                       Frame = "{{0, 0}, {685, 215}}";
+                                                               };
+                                                       };
+                                                       Tab3 = {
+                                                               BuildMessageFrame = "{{0, 0}, {687, 262}}";
+                                                               BuildTranscriptFrame = "{{0, 271}, {687, 2}}";
+                                                               BuildTranscriptFrameExpanded = YES;
+                                                               Frame = "{{0, 0}, {685, 295}}";
+                                                       };
+                                                       Tab4 = {
+                                                               Frame = "{{0, 0}, {612, 295}}";
+                                                       };
+                                                       TabCount = 5;
+                                                       TabsVisible = NO;
+                                               };
+                                               SplitCount = 1;
+                                               Tab0 = {
+                                                       Frame = "{{0, 0}, {300, 533}}";
+                                                       GroupTreeTableConfiguration = (
+                                                               TargetStatusColumn,
+                                                               18,
+                                                               MainColumn,
+                                                               267,
+                                                       );
+                                               };
+                                               Tab1 = {
+                                                       ClassesFrame = "{{0, 0}, {280, 398}}";
+                                                       ClassesTreeTableConfiguration = (
+                                                               PBXBookColumnIdentifier,
+                                                               20,
+                                                               PBXClassColumnIdentifier,
+                                                               237,
+                                                       );
+                                                       Frame = "{{0, 0}, {278, 659}}";
+                                                       MembersFrame = "{{0, 407}, {280, 252}}";
+                                                       MembersTreeTableConfiguration = (
+                                                               PBXBookColumnIdentifier,
+                                                               20,
+                                                               PBXMethodColumnIdentifier,
+                                                               236,
+                                                       );
+                                               };
+                                               Tab2 = {
+                                                       Frame = "{{0, 0}, {200, 100}}";
+                                               };
+                                               Tab3 = {
+                                                       Frame = "{{0, 0}, {200, 100}}";
+                                                       TargetTableConfiguration = (
+                                                               ActiveObject,
+                                                               16,
+                                                               ObjectNames,
+                                                               202.296,
+                                                       );
+                                               };
+                                               Tab4 = {
+                                                       BreakpointsTreeTableConfiguration = (
+                                                               breakpointColumn,
+                                                               197,
+                                                               enabledColumn,
+                                                               31,
+                                                       );
+                                                       Frame = "{{0, 0}, {250, 100}}";
+                                               };
+                                               TabCount = 5;
+                                               TabsVisible = NO;
+                                       };
+                                       NavBarShownByDefault = YES;
+                                       StatusViewVisible = YES;
+                                       Template = F5314676015831810DCA290F;
+                                       ToolbarVisible = YES;
+                                       WindowLocation = "{7, 250}";
+                               },
+                               {
+                                       ContentSize = "{594, 303}";
+                                       LeftSlideOut = {
+                                               Collapsed = NO;
+                                               Frame = "{{0, 23}, {594, 280}}";
+                                               Split0 = {
+                                                       ActiveTab = 1;
+                                                       ActiveTabName = PBXRunSessionModule;
+                                                       Collapsed = YES;
+                                                       Frame = "{{0, 0}, {594, 280}}";
+                                                       Split0 = {
+                                                               Frame = "{{1e+06, 1e+06}, {594, 0}}";
+                                                       };
+                                                       SplitCount = 1;
+                                                       Tab0 = {
+                                                               Frame = "{{0, 0}, {804, 321}}";
+                                                       };
+                                                       Tab1 = {
+                                                               Debugger = {
+                                                                       Collapsed = NO;
+                                                                       Frame = "{{0, 0}, {594, 274}}";
+                                                                       Split0 = {
+                                                                               Frame = "{{0, 24}, {594, 250}}";
+                                                                               Split0 = {
+                                                                                       Frame = "{{0, 0}, {290, 250}}";
+                                                                               };
+                                                                               Split1 = {
+                                                                                       DebugVariablesTableConfiguration = (
+                                                                                               Name,
+                                                                                               123,
+                                                                                               Value,
+                                                                                               85,
+                                                                                               Summary,
+                                                                                               62.123,
+                                                                                       );
+                                                                                       Frame = "{{299, 0}, {295, 250}}";
+                                                                               };
+                                                                               SplitCount = 2;
+                                                                       };
+                                                                       SplitCount = 1;
+                                                                       Tab0 = {
+                                                                               Frame = "{{0, 0}, {100, 50}}";
+                                                                       };
+                                                                       Tab1 = {
+                                                                               Frame = "{{0, 0}, {100, 50}}";
+                                                                       };
+                                                                       TabCount = 2;
+                                                                       TabsVisible = YES;
+                                                               };
+                                                               Frame = "{{0, 0}, {594, 274}}";
+                                                               LauncherConfigVersion = 7;
+                                                       };
+                                                       Tab2 = {
+                                                               Frame = "{{0, 0}, {594, 274}}";
+                                                               LauncherConfigVersion = 3;
+                                                               Runner = {
+                                                                       Frame = "{{0, 0}, {594, 274}}";
+                                                               };
+                                                       };
+                                                       Tab3 = {
+                                                               BuildMessageFrame = "{{0, 0}, {614, 262}}";
+                                                               BuildTranscriptFrame = "{{0, 271}, {614, 2}}";
+                                                               BuildTranscriptFrameExpanded = YES;
+                                                               Frame = "{{0, 0}, {612, 295}}";
+                                                       };
+                                                       Tab4 = {
+                                                               Frame = "{{0, 0}, {612, 295}}";
+                                                       };
+                                                       TabCount = 5;
+                                                       TabsVisible = NO;
+                                               };
+                                               SplitCount = 1;
+                                               Tab0 = {
+                                                       Frame = "{{0, 0}, {300, 533}}";
+                                                       GroupTreeTableConfiguration = (
+                                                               TargetStatusColumn,
+                                                               18,
+                                                               MainColumn,
+                                                               267,
+                                                       );
+                                               };
+                                               Tab1 = {
+                                                       ClassesFrame = "{{0, 0}, {280, 398}}";
+                                                       ClassesTreeTableConfiguration = (
+                                                               PBXBookColumnIdentifier,
+                                                               20,
+                                                               PBXClassColumnIdentifier,
+                                                               237,
+                                                       );
+                                                       Frame = "{{0, 0}, {278, 659}}";
+                                                       MembersFrame = "{{0, 407}, {280, 252}}";
+                                                       MembersTreeTableConfiguration = (
+                                                               PBXBookColumnIdentifier,
+                                                               20,
+                                                               PBXMethodColumnIdentifier,
+                                                               236,
+                                                       );
+                                               };
+                                               Tab2 = {
+                                                       Frame = "{{0, 0}, {200, 100}}";
+                                               };
+                                               Tab3 = {
+                                                       Frame = "{{0, 0}, {200, 386}}";
+                                                       TargetTableConfiguration = (
+                                                               ActiveObject,
+                                                               16,
+                                                               ObjectNames,
+                                                               202.296,
+                                                       );
+                                               };
+                                               Tab4 = {
+                                                       BreakpointsTreeTableConfiguration = (
+                                                               breakpointColumn,
+                                                               197,
+                                                               enabledColumn,
+                                                               31,
+                                                       );
+                                                       Frame = "{{0, 0}, {250, 386}}";
+                                               };
+                                               TabCount = 5;
+                                               TabsVisible = NO;
+                                       };
+                                       NavBarShownByDefault = YES;
+                                       StatusViewVisible = YES;
+                                       Template = F5534CB2020F3F8A0DCA290F;
+                                       ToolbarVisible = YES;
+                                       WindowLocation = "{4, 381}";
+                               },
                        );
-                       PBXWorkspaceStateSaveDate = 112497554;
+                       PBXWorkspaceStateSaveDate = 114188516;
                };
                perUserProjectItems = {
                        3F0A602B062B681C007C67C1 = 3F0A602B062B681C007C67C1;
                        3F0A602C062B681C007C67C1 = 3F0A602C062B681C007C67C1;
                        3F0A602D062B681C007C67C1 = 3F0A602D062B681C007C67C1;
                        3F0BDAD706AF6C1F00A80064 = 3F0BDAD706AF6C1F00A80064;
-                       3F2FDB0606B4943500A80064 = 3F2FDB0606B4943500A80064;
-                       3F2FDB0706B4943500A80064 = 3F2FDB0706B4943500A80064;
+                       3F10FD0506CC4D6D00A80064 = 3F10FD0506CC4D6D00A80064;
+                       3F10FD0606CC4D6D00A80064 = 3F10FD0606CC4D6D00A80064;
+                       3F10FD0806CC4D6D00A80064 = 3F10FD0806CC4D6D00A80064;
+                       3F10FD0906CC4D6D00A80064 = 3F10FD0906CC4D6D00A80064;
+                       3F10FD0A06CC4D6D00A80064 = 3F10FD0A06CC4D6D00A80064;
+                       3F10FD0B06CC4D6D00A80064 = 3F10FD0B06CC4D6D00A80064;
+                       3F10FD0C06CC4D6D00A80064 = 3F10FD0C06CC4D6D00A80064;
                        3F2FDB0806B4943500A80064 = 3F2FDB0806B4943500A80064;
-                       3F2FDB0906B4943500A80064 = 3F2FDB0906B4943500A80064;
                        3F579AB40645EEDF007C6F93 = 3F579AB40645EEDF007C6F93;
                        3F579AB50645EEDF007C6F93 = 3F579AB50645EEDF007C6F93;
-                       3F7037A506B335A800A80064 = 3F7037A506B335A800A80064;
+                       3F5F093C06B4953400A80064 = 3F5F093C06B4953400A80064;
+                       3F6587EE06CE7003007C6F9A = 3F6587EE06CE7003007C6F9A;
+                       3F6587EF06CE7003007C6F9A = 3F6587EF06CE7003007C6F9A;
                        3F7037A606B335A800A80064 = 3F7037A606B335A800A80064;
                        3F7037A706B335A800A80064 = 3F7037A706B335A800A80064;
                        3F7037A806B335A800A80064 = 3F7037A806B335A800A80064;
                rLen = 0;
                rLoc = 6066;
                rType = 0;
-               vrLen = 1911;
+               vrLen = 1874;
                vrLoc = 4192;
        };
        3F0A602C062B681C007C67C1 = {
                isa = PBXTextBookmark;
                name = "MacGPSBabel.applescript: 301";
                rLen = 0;
-               rLoc = 13627;
+               rLoc = 14214;
                rType = 0;
                vrLen = 1839;
                vrLoc = 0;
        };
-       3F2FDB0606B4943500A80064 = {
+       3F10FD0506CC4D6D00A80064 = {
                isa = PBXTargetBookmark;
                trg = 29B97326FDCFA39411CA2CEA;
-               uiCtxt = {
-                       TOCViewDetailVisibleRect = "{{0, 0}, {590, 233}}";
-                       TOCViewExpandedItems = (
-                               "com.apple.target-editor-pane.settings",
-                               "com.apple.target-editor-pane.settings.simple",
-                               "com.apple.target-editor-pane.info-plist",
-                               "com.apple.target-editor-pane.info-plist.simple",
-                               "com.apple.target-editor-pane.buildphases",
-                       );
-                       TOCViewMasterVisibleRect = "{{0, 0}, {235, 607}}";
-                       TOCViewSelectedItems = (
-                               PBXTargetSummarySettingsModule,
-                       );
-               };
        };
-       3F2FDB0706B4943500A80064 = {
+       3F10FD0606CC4D6D00A80064 = {
                fRef = F586ED0005CB576C017C67C1;
                isa = PBXTextBookmark;
-               name = "preferences.applescript: 122";
+               name = "preferences.applescript: 144";
                rLen = 0;
-               rLoc = 5321;
+               rLoc = 6066;
                rType = 0;
-               vrLen = 2032;
-               vrLoc = 607;
+               vrLen = 2066;
+               vrLoc = 40;
        };
-       3F2FDB0806B4943500A80064 = {
+       3F10FD0806CC4D6D00A80064 = {
                isa = PBXTargetBookmark;
                trg = 29B97326FDCFA39411CA2CEA;
-               uiCtxt = {
-                       TOCViewDetailVisibleRect = "{{0, 0}, {590, 233}}";
-                       TOCViewExpandedItems = (
-                               "com.apple.target-editor-pane.settings",
-                               "com.apple.target-editor-pane.settings.simple",
-                               "com.apple.target-editor-pane.info-plist",
-                               "com.apple.target-editor-pane.info-plist.simple",
-                               "com.apple.target-editor-pane.buildphases",
-                       );
-                       TOCViewMasterVisibleRect = "{{0, 0}, {235, 607}}";
-                       TOCViewSelectedItems = (
-                               PBXTargetSummarySettingsModule,
-                       );
-               };
        };
-       3F2FDB0906B4943500A80064 = {
+       3F10FD0906CC4D6D00A80064 = {
+               fRef = DA206CF3015C4E8B03C91932;
+               isa = PBXTextBookmark;
+               name = "MacGPSBabel.applescript: 301";
+               rLen = 0;
+               rLoc = 14214;
+               rType = 0;
+               vrLen = 1839;
+               vrLoc = 0;
+       };
+       3F10FD0A06CC4D6D00A80064 = {
                fRef = F586ED0005CB576C017C67C1;
                isa = PBXTextBookmark;
                name = "preferences.applescript: 144";
                rLen = 0;
                rLoc = 6066;
                rType = 0;
-               vrLen = 1949;
-               vrLoc = 4117;
+               vrLen = 2106;
+               vrLoc = 40;
+       };
+       3F10FD0B06CC4D6D00A80064 = {
+               fRef = DA206CF3015C4E8B03C91932;
+               isa = PBXTextBookmark;
+               name = "MacGPSBabel.applescript: 301";
+               rLen = 0;
+               rLoc = 14214;
+               rType = 0;
+               vrLen = 1839;
+               vrLoc = 0;
+       };
+       3F10FD0C06CC4D6D00A80064 = {
+               fRef = F586ED0005CB576C017C67C1;
+               isa = PBXTextBookmark;
+               name = "preferences.applescript: 144";
+               rLen = 0;
+               rLoc = 6066;
+               rType = 0;
+               vrLen = 2066;
+               vrLoc = 40;
+       };
+       3F2FDB0806B4943500A80064 = {
+               isa = PBXTargetBookmark;
+               trg = 29B97326FDCFA39411CA2CEA;
        };
        3F579AB40645EEDF007C6F93 = {
                fRef = DA206CF3015C4E8B03C91932;
                isa = PBXTextBookmark;
                name = "MacGPSBabel.applescript: 426";
                rLen = 0;
-               rLoc = 18393;
+               rLoc = 20376;
                rType = 0;
                vrLen = 1839;
                vrLoc = 0;
                vrLen = 281;
                vrLoc = 0;
        };
-       3F7037A506B335A800A80064 = {
+       3F5F093C06B4953400A80064 = {
+               fRef = F586ED0005CB576C017C67C1;
+               isa = PBXTextBookmark;
+               name = "preferences.applescript: 144";
+               rLen = 0;
+               rLoc = 6066;
+               rType = 0;
+               vrLen = 1949;
+               vrLoc = 4117;
+       };
+       3F6587EE06CE7003007C6F9A = {
                fRef = DA206CF3015C4E8B03C91932;
                isa = PBXTextBookmark;
-               name = "MacGPSBabel.applescript: 301";
+               name = "MacGPSBabel.applescript: 23";
                rLen = 0;
-               rLoc = 13627;
+               rLoc = 838;
                rType = 0;
-               vrLen = 1634;
-               vrLoc = 12662;
+               vrLen = 1839;
+               vrLoc = 0;
+       };
+       3F6587EF06CE7003007C6F9A = {
+               fRef = DA206CF3015C4E8B03C91932;
+               isa = PBXTextBookmark;
+               name = "MacGPSBabel.applescript: 654";
+               rLen = 0;
+               rLoc = 28253;
+               rType = 0;
+               vrLen = 1669;
+               vrLoc = 18774;
        };
        3F7037A606B335A800A80064 = {
                fRef = 089C165DFE840E0CC02AAC07;
                isa = PBXTextBookmark;
                name = "MacGPSBabel.applescript: 301";
                rLen = 0;
-               rLoc = 13627;
+               rLoc = 14214;
                rType = 0;
                vrLen = 1634;
                vrLoc = 12662;
                rLen = 0;
                rLoc = 5321;
                rType = 0;
-               vrLen = 1911;
+               vrLen = 1874;
                vrLoc = 4192;
        };
        3F9319EA06AF4FA500A80064 = {
                isa = PBXTextBookmark;
                name = "MacGPSBabel.applescript: 426";
                rLen = 0;
-               rLoc = 18393;
+               rLoc = 20376;
                rType = 0;
                vrLen = 1594;
                vrLoc = 15551;
                isa = PBXTextBookmark;
                name = "MacGPSBabel.applescript: 426";
                rLen = 0;
-               rLoc = 18393;
+               rLoc = 20376;
                rType = 0;
                vrLen = 1839;
                vrLoc = 0;
                rLen = 0;
                rLoc = 6066;
                rType = 0;
-               vrLen = 1911;
+               vrLen = 1874;
                vrLoc = 4192;
        };
        3FB94847069C744B00A80064 = {
                isa = PBXTextBookmark;
                name = "MacGPSBabel.applescript: 426";
                rLen = 0;
-               rLoc = 18393;
+               rLoc = 20376;
                rType = 0;
                vrLen = 1955;
                vrLoc = 350;
                rLen = 0;
                rLoc = 6066;
                rType = 0;
-               vrLen = 1911;
+               vrLen = 1874;
                vrLoc = 4192;
        };
        3FB94849069C744B00A80064 = {
                isa = PBXTextBookmark;
                name = "MacGPSBabel.applescript: 426";
                rLen = 0;
-               rLoc = 18393;
+               rLoc = 20376;
                rType = 0;
                vrLen = 1594;
                vrLoc = 15551;
                isa = PBXTextBookmark;
                name = "MacGPSBabel.applescript: 606";
                rLen = 0;
-               rLoc = 26256;
+               rLoc = 28253;
                rType = 0;
                vrLen = 1782;
                vrLoc = 9262;
                isa = PBXTextBookmark;
                name = "MacGPSBabel.applescript: 564";
                rLen = 0;
-               rLoc = 26256;
+               rLoc = 28253;
                rType = 0;
                vrLen = 1497;
                vrLoc = 0;
                isa = PBXTextBookmark;
                name = "MacGPSBabel.applescript: 328";
                rLen = 0;
-               rLoc = 16002;
+               rLoc = 17059;
                rType = 0;
                vrLen = 1498;
                vrLoc = 0;
                isa = PBXTextBookmark;
                name = "MacGPSBabel.applescript: 426";
                rLen = 0;
-               rLoc = 18393;
+               rLoc = 20376;
                rType = 0;
                vrLen = 2463;
                vrLoc = 1202;
                isa = PBXTextBookmark;
                name = "MacGPSBabel.applescript: 568";
                rLen = 0;
-               rLoc = 25534;
+               rLoc = 27531;
                rType = 0;
                vrLen = 1904;
                vrLoc = 23011;
                isa = PBXTextBookmark;
                name = "MacGPSBabel.applescript: 554";
                rLen = 0;
-               rLoc = 26256;
+               rLoc = 28253;
                rType = 0;
                vrLen = 1511;
                vrLoc = 14316;
                isa = PBXTextBookmark;
                name = "MacGPSBabel.applescript: 556";
                rLen = 0;
-               rLoc = 26256;
+               rLoc = 28253;
                rType = 0;
                vrLen = 1495;
                vrLoc = 0;
                isa = PBXTextBookmark;
                name = "MacGPSBabel.applescript: 245";
                rLen = 0;
-               rLoc = 12962;
+               rLoc = 13549;
                rType = 0;
                vrLen = 1811;
                vrLoc = 11141;
                isa = PBXTextBookmark;
                name = "MacGPSBabel.applescript: 245";
                rLen = 0;
-               rLoc = 12962;
+               rLoc = 13549;
                rType = 0;
                vrLen = 1795;
                vrLoc = 11141;
                isa = PBXTextBookmark;
                name = "MacGPSBabel.applescript: 245";
                rLen = 0;
-               rLoc = 12962;
+               rLoc = 13549;
                rType = 0;
                vrLen = 1773;
                vrLoc = 9896;
                isa = PBXTextBookmark;
                name = "MacGPSBabel.applescript: 528";
                rLen = 1109;
-               rLoc = 23829;
+               rLoc = 25826;
                rType = 0;
                vrLen = 2083;
                vrLoc = 20945;
                isa = PBXTextBookmark;
                name = "MacGPSBabel.applescript: 543";
                rLen = 543;
-               rLoc = 24939;
+               rLoc = 26936;
                rType = 0;
                vrLen = 2083;
                vrLoc = 20945;
                isa = PBXTextBookmark;
                name = "MacGPSBabel.applescript: 557";
                rLen = 0;
-               rLoc = 26256;
+               rLoc = 28253;
                rType = 0;
                vrLen = 1436;
                vrLoc = 21697;
                isa = PBXTextBookmark;
                name = "MacGPSBabel.applescript: 564";
                rLen = 161;
-               rLoc = 25535;
+               rLoc = 27532;
                rType = 0;
                vrLen = 1973;
                vrLoc = 22760;
                isa = PBXTextBookmark;
                name = "MacGPSBabel.applescript: 577";
                rLen = 0;
-               rLoc = 26256;
+               rLoc = 28253;
                rType = 0;
                vrLen = 1728;
                vrLoc = 16243;
                isa = PBXTextBookmark;
                name = "MacGPSBabel.applescript: 577";
                rLen = 0;
-               rLoc = 26256;
+               rLoc = 28253;
                rType = 0;
                vrLen = 1774;
                vrLoc = 13079;
                isa = PBXTextBookmark;
                name = "MacGPSBabel.applescript: 318";
                rLen = 0;
-               rLoc = 16002;
+               rLoc = 17059;
                rType = 0;
                vrLen = 1766;
                vrLoc = 13015;
                isa = PBXTextBookmark;
                name = "MacGPSBabel.applescript: 556";
                rLen = 0;
-               rLoc = 26256;
+               rLoc = 28253;
                rType = 0;
                vrLen = 1497;
                vrLoc = 0;
                isa = PBXTextBookmark;
                name = "MacGPSBabel.applescript: 572";
                rLen = 0;
-               rLoc = 26256;
+               rLoc = 28253;
                rType = 0;
                vrLen = 2257;
                vrLoc = 782;
                isa = PBXTextBookmark;
                name = "MacGPSBabel.applescript: 572";
                rLen = 0;
-               rLoc = 26256;
+               rLoc = 28253;
                rType = 0;
                vrLen = 2240;
                vrLoc = 332;
                isa = PBXTextBookmark;
                name = "MacGPSBabel.applescript: 577";
                rLen = 0;
-               rLoc = 26256;
+               rLoc = 28253;
                rType = 0;
                vrLen = 1728;
                vrLoc = 16243;
                isa = PBXTextBookmark;
                name = "MacGPSBabel.applescript: 562";
                rLen = 0;
-               rLoc = 25482;
+               rLoc = 27479;
                rType = 0;
                vrLen = 1973;
                vrLoc = 22760;
                isa = PBXTextBookmark;
                name = "MacGPSBabel.applescript: 518";
                rLen = 0;
-               rLoc = 22694;
+               rLoc = 24691;
                rType = 0;
                vrLen = 1965;
                vrLoc = 21930;
                isa = PBXTextBookmark;
                name = "MacGPSBabel.applescript: 575";
                rLen = 0;
-               rLoc = 26256;
+               rLoc = 28253;
                rType = 0;
                vrLen = 2154;
                vrLoc = 21908;
                rLen = 0;
                rLoc = 4270;
                rType = 0;
-               vrLen = 1911;
+               vrLen = 1874;
                vrLoc = 4192;
        };
 }
index e2825c35a3345ea6392d1e1614a097b7431ab552..d7d4e509f907f066d0b98bc2d23a7cef3f2cb580 100644 (file)
        <key>CFBundleSignature</key>
        <string>mGPS</string>
        <key>CFBundleVersion</key>
-       <string>1.0.3</string>
+       <string>1.0.4</string>
        <key>NSAppleScriptEnabled</key>
        <string>YES</string>
        <key>NSMainNibFile</key>